BiWeeklyEvaluationEntry

@Serializable
data class BiWeeklyEvaluationEntry(var depressionScore: Int = -1, var anxietyScore: Int = -1, var depressionResults: String = "", var anxietyResults: String = "", var dateCompleted: Date? = null)

Represents the result of a bi-weekly mood evaluation.

This data class holds the depression and anxiety scores, along with their corresponding results and the date the evaluation was completed. It is used for tracking mood evaluations over a bi-weekly period.

Constructors

Link copied to clipboard
constructor(depressionScore: Int = -1, anxietyScore: Int = -1, depressionResults: String = "", anxietyResults: String = "", dateCompleted: Date? = null)

Properties

Link copied to clipboard

The results or message related to the anxiety evaluation.

Link copied to clipboard

The score for the anxiety evaluation. Default is -1 if not set.

Link copied to clipboard
@Serializable(with = DateSerializer::class)
var dateCompleted: Date?

The date the evaluation was completed, represented as a nullable Date object.

Link copied to clipboard

The results or message related to the depression evaluation.

Link copied to clipboard

The score for the depression evaluation. Default is -1 if not set.